home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ For TASM / THUNK95.PAK / DLL16.DEF < prev    next >
Text File  |  1996-02-21  |  944b  |  31 lines

  1. ;----------------------------------------------------------------------------
  2. ; Thunk95 example program
  3. ; Copyright (c) 1996 by Borland International, All Rights Reserved
  4. ;----------------------------------------------------------------------------
  5. DESCRIPTION  'Module definition file for 16-bit DLL'
  6. EXETYPE  WINDOWS
  7.  
  8. CODE    PRELOAD MOVEABLE DISCARDABLE
  9. DATA    PRELOAD MOVEABLE SINGLE
  10.  
  11. ; If the 16-bit DLL is not marked for Windows 4.0,
  12. ; the DllEntryPoint function will not be called.
  13. SUBSYSTEM 4.0
  14.  
  15. HEAPSIZE 5120
  16.  
  17. ; Since pascal calling convention is being used in the 16-bit world,
  18. ; all exported symbols will have been force to upper case by the
  19. ; compiler and assembler.
  20.  
  21. EXPORTS
  22.    DLLENTRYPOINT        @1 RESIDENTNAME
  23.    THUNKOBJ_THUNKDATA16 @2
  24.    MULTIPLY16           @3
  25.    STRINGLOOKUP16       @4
  26.    GETRECORD16          @5
  27.  
  28. IMPORTS
  29.    C16THKSL01        = KERNEL.631
  30.    THUNKCONNECT16    = KERNEL.651
  31.